
:root {
  --primary-color: #2c3e50;
  --secondary-color: orange;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --accent-color: #3498db;
}


.top-bar {
  background-color: #006555;
  color: white;
  font-size: 0.9rem;
}

.top-bar i {
  color: var(--secondary-color);
  margin-right: 5px;
}

.navbar {

  transition: all 0.3s;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  padding: 8px 15px !important;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.btn-primary {
  background-color: #006555;
  border-color: #006555;
}

.btn-primary:hover {
  background-color: #006555;
  border-color: #006555;
}

 .services-section {
     
      text-align: center;
    }

    .services-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      color: #fff;
    }

    .service-card {
      background: #fff;
      color: #00332f;
      padding: 30px 20px;
      border-radius: 15px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #035c54;
    }

    .service-title {
      font-weight: 700;
      font: bold;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 15px;
      color: #444;
    }
.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .section-title h2 {
      font-size: 1.8rem;
  }
  
  .card {
      margin-bottom: 20px;
  }
}



/* contect page start */

.contact-container {
  max-width: 1200px;
  margin: 50px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.info-section {
  background-color: #006555;
  color: white;
  padding: 40px 30px;
  /* height: 100%; */
}
.info-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.info-section span.highlight {
  color: #ffc107;
}
.contact-info {
  margin-top: 40px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.info-icon {
  margin-right: 15px;
  min-width: 20px;
  color: #ffc107;
}
.form-section {
  background-color: white;
  padding: 40px 30px;
}
.form-control {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}
.form-control:focus {
  box-shadow: none;
  border-color: #006555;
}
.submit-btn {
  background-color: #006555;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
}
.submit-btn:hover {
  background-color: #074429;
}
textarea.form-control {
  min-height: 120px;
}
.dropdown-toggle {
  text-align: left;
  background-color: white;
  color: #495057;
  border: 1px solid #e0e0e0;
}
.dropdown-toggle::after {
  float: right;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .info-section, .form-section {
      padding: 30px 15px;
  }
}
/* contect page end */

.top-bar {
    background-color: #006555;
    color: white;
    font-size: 14px;
}
.logo-text span:first-child {
    color: #006555;
}
.logo-text span:last-child {
    color: #006555;
}
.popular-btn {
    background-color: #006555;
    color: white;
    border-radius: 0;
}
.popular-btn:hover {
    background-color: #006555;
}   




body, html {

  font-family: poppins, sans-serif;
}




.hero {
  height: 100vh;
  width: 100%;
  background: url('../images/ms-frame-powder-coating-service.png') center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.content-box {
  position: relative;
  z-index: 2;
  color: white;
   background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  max-width: 700px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.content-box h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInDown 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.content-box p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  animation: fadeInUp 1.4s ease-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.8s;
}

.buttons a {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #006555;
  color: white;
}

.btn-primary:hover {
  background-color: #006555;
}

.btn-outline {
  border: 2px solid #fff;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .content-box h1 {
    font-size: 2rem;
  }
  .content-box p {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.highlighted-word {
  font-weight: bold;
  color: #f6a20d;
  transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

/* hero section end */

/* about section strat */

#about {
  background-color: #ffffff;
  padding: 50px 0;
  /* text-align: center; */
}
#about h2 {
  font-size: 35px;
  margin-top: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #006555;
}
#about img {
  transition: transform 0.3s ease-in-out;
}
#about img:hover {
  transform: scale(1.05);

}
.abtn{
  height: 45px;
  width: 151px;
  font-size: 20px;
  font-weight: 400;
}
/* about us section end */

/* services section start */
#services {
  background-color: #006555;
  padding: 50px 0;
}

.servicetitle {
  color: #fff;
}

.service-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-icon {
  font-size: 40px;
  color: #006555; /* Set universal icon color */
}

.service-card:hover {
  background-color: #f8f9fa;
  transform: scale(1.03);
  transition: 0.3s ease;
}

/* services section end */

/* Industries We Serve Section Start */
/* Full section background */
.industry-section {
  background-color: #006555;
}

/* Card styles */
.industry-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 12px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  height: 100%;
  width: auto;
}

.industry-card:hover {
  box-shadow: 0 0.8rem 1.2rem rgba(0, 0, 0, 0.1);
}

/* Icon animation & styles */
.industry-icon {
  font-size: 2.5rem;
  color: #777;
  margin-bottom: 1rem;
  transition: transform 0.4s ease, color 0.4s ease;
}

.industry-card:hover .industry-icon {
  transform: rotate(10deg) scale(1.2);
  color: #f6a20d;
}

/* Headings */
.industry-card h6 {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #222;
}

/* Description */
.industry-desc {
 font-size: 15px;
  color: #555;
}

/*  Industries We Serve Section end */

/* Make the logo grid responsive */

/* For Mobile screens */
@media (max-width: 576px) {
  .col-6 {
    flex: 0 0 50%; /* For mobile screens (small devices), 2 logos per row */
  }
}

/* For Tablets (smaller devices like iPads) */

/* For Medium and Large Devices */
@media (min-width: 992px) {
  .col-md-3 {
    flex: 0 0 25%; /* 4 logos per row for medium-sized devices */
  }
}

/* For large devices like desktops */
@media (min-width: 1200px) {
  .col-lg-2 {
    flex: 0 0 20%; /* 5 logos per row on large screens */
  }
}


/* client section end */

/* Testimonials section start */

section.testimonial-section {
  background: #ffffff;
  padding: 60px 0;
  color: #000;
}

.testimonial-card {
  background: #ffffff;
  padding: 2.5rem 1.5rem 2rem;
  border-radius: 15px;
  margin: 0 10px 30px;
  position: relative;
  height: 100%;
  color: #000;
  border: 1px solid #eee;
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 10px;
}

.testimonial-card h5 {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card h6 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.9rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
}
/* Testimonials section end */


.footer-link {
  color: #080808;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.footer-link:hover {
  color: #006555;
  transform: translateX(5px);
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  color: #000000;
  font-size: 18px;
  transition: 0.3s;
}
.social-icon:hover {
  color: #006555;
  transform: scale(1.2);
}

/* contect page */
.right {
  flex: 1;
  padding: 0px 30px;
}

.right h2 {
  margin-bottom: 20px;
  color: #333;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: #444;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 14px;
}


.field textarea {
  resize: vertical;
}

input[type="submit"] {
  background: #006555;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background: #006555;
}

@media (max-width: 768px) {


  .left, .right {
    width: 100%;
  }
}
.card-title, .card-text {
  text-transform: capitalize;
}
